frame: Remove unnecessary function
authorTimm Bäder <mail@baedert.org>
Sun, 27 Dec 2020 20:14:49 +0000 (21:14 +0100)
committerTimm Bäder <mail@baedert.org>
Sun, 3 Jan 2021 10:01:29 +0000 (11:01 +0100)
Just call the vfunc directly in the only place we used to call the old
wrapper

gtk/gtkframe.c

index a8aa980779d92d84deb4181c187cdb2b1382f8dd..10b9c818d4112ba2fe2144820ca1e90b3889d79b 100644 (file)
@@ -114,9 +114,6 @@ static void gtk_frame_size_allocate (GtkWidget  *widget,
                                      int         width,
                                      int         height,
                                      int         baseline);
-
-static void gtk_frame_compute_child_allocation      (GtkFrame      *frame,
-                                                     GtkAllocation *child_allocation);
 static void gtk_frame_real_compute_child_allocation (GtkFrame      *frame,
                                                      GtkAllocation *child_allocation);
 
@@ -497,7 +494,7 @@ gtk_frame_size_allocate (GtkWidget *widget,
   GtkFramePrivate *priv = gtk_frame_get_instance_private (frame);
   GtkAllocation new_allocation;
 
-  gtk_frame_compute_child_allocation (frame, &new_allocation);
+  GTK_FRAME_GET_CLASS (frame)->compute_child_allocation (frame, &new_allocation);
 
   if (priv->label_widget &&
       gtk_widget_get_visible (priv->label_widget))
@@ -529,16 +526,6 @@ gtk_frame_size_allocate (GtkWidget *widget,
     gtk_widget_size_allocate (priv->child, &new_allocation, -1);
 }
 
-static void
-gtk_frame_compute_child_allocation (GtkFrame      *frame,
-                                    GtkAllocation *child_allocation)
-{
-  g_return_if_fail (GTK_IS_FRAME (frame));
-  g_return_if_fail (child_allocation != NULL);
-
-  GTK_FRAME_GET_CLASS (frame)->compute_child_allocation (frame, child_allocation);
-}
-
 static void
 gtk_frame_real_compute_child_allocation (GtkFrame      *frame,
                                          GtkAllocation *child_allocation)